public final class ManifestParser
extends java.lang.Object
| Modifier | Constructor and Description |
|---|---|
private |
ManifestParser()
Private constructor for preventing instantiation of the class.
|
| Modifier and Type | Method and Description |
|---|---|
static java.io.File[] |
parseManifest(java.io.File manifest)
Parses the provided manifest file.
|
static java.io.File[] |
parseManifest(java.lang.String fileString)
Parses the provided manifest file.
|
private static java.io.File[] |
processManifest(java.util.ArrayList<java.lang.String> fileStrings)
Processes the ArrayList of Strings collected by the readManifest()
method.
|
private static java.util.ArrayList<java.lang.String> |
readManifest(java.io.File manifest)
Reads the manifest file.
|
private ManifestParser()
public static java.io.File[] parseManifest(java.io.File manifest)
manifest - the File object pointing to the manifest file on disk.public static java.io.File[] parseManifest(java.lang.String fileString)
fileString - the String representing the manifest file on disk.private static java.util.ArrayList<java.lang.String> readManifest(java.io.File manifest)
manifest - the File object pointing to the manifest file on disk.private static java.io.File[] processManifest(java.util.ArrayList<java.lang.String> fileStrings)
fileStrings - the ArrayList of Strings pointing to graphs on the
disk.